
  
  .container {
    max-width: 1200px;
    width: 95%;
  }
  
  .slider-wrapper {
    position: relative;
  }
  
  .slider-head{
    font-size: 1.7rem !important;
  color: #fff;
  font-weight: bold;
  padding-bottom: 10%;
  text-align: start;
  
  }
  .slider-para{
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    padding-top: 2%;
    line-height: 1.625;
    padding-bottom: 12%;
  }
  .slider-div{
  padding: 8%;
  height: 170px !important;
  
  }
  .slider-div2{
    padding: 8%;
    height: 220px !important;
    
    }
  .slider-div-color1{
    background-color: #731919;
  }
  .slider-div-color2{
    background-color: red;
  }
  .slider-div-color3{
    background-color: rgb(0, 87, 4);
  }
  /* .fa-solid{
    font-size: 25px;
   
    padding: 5%;
  } */
  .image-list div a{
    background-color: #fff;
    border-radius: 50% 50% 50% 50%;
    padding: 12% 5% 5% 5%;
  
  }
  
  .slider-head:hover{
    text-decoration: underline;
    cursor: pointer;
  }
  
  .slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  .slider-wrapper .slide-button:hover {
    background: #404040;
  }
  
  .slider-wrapper .slide-button#prev-slide {
    left: -25px;
    display: none;
  }
  
  .slider-wrapper .slide-button#next-slide {
    right: -25px;
  }
  
  .slider-wrapper .image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
  }
  
  .slider-wrapper .image-list .image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
  }
  
  .container .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .slider-scrollbar .scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
  }
  
  .slider-scrollbar:hover .scrollbar-track {
    height: 4px;
  }
  
  .slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
  }
  
  .slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
  }
  
  .slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
  }
  
  /* Styles for mobile and tablets */
  @media only screen and (max-width: 1023px) {
    /* .slider-wrapper .slide-button {
      display: none !important;
    } */
  
    .slider-wrapper .image-list {
      gap: 10px;
      margin-bottom: 15px;
      scroll-snap-type: x mandatory;
    }
  
    .slider-wrapper .image-list .image-item {
      width: 350px;
      height: 374px;
    }
  
    .slider-scrollbar .scrollbar-thumb {
      width: 20%;
    }
  }
  @media (min-width: 1200px){
.container {
    max-width: none !important;
}}